home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctutor2 / chrstrg.c < prev    next >
Text File  |  1986-02-11  |  384b  |  14 lines

  1. main()
  2. {
  3. char name[5];       /* define a string of characters */
  4.  
  5.    name[0] = 'D';
  6.    name[1] = 'a';
  7.    name[2] = 'v';
  8.    name[3] = 'e';
  9.    name[4] = 0;     /* Null character - end of text */
  10.  
  11.    printf("The name is %s\n",name);
  12.    printf("One letter is %c\n",name[2]);
  13.    printf("Part of the name is %s\n",&name[1]);
  14. }